home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-05-25 | 690 b | 32 lines |
- #
- # Compile options:
- #
- # Set -DSYSV if on System V
- # Set -DNEW_CTIME if using the table-driven version of ctime (i.e., if
- # your struct tm contains a tm_zone field)
- # Set -DBIGFONT= and -DSMALLFONT= whatever fonts you like
- # Pick -O or -g
- #
-
- CFLAGS=-nointl -DBIGFONT=\"9x15\" -DSMALLFONT=\"6x10\" -O -DSYSV
-
- OFILES=sunclock.o bitmaps.o astro.o
-
- all: sunclock sunclock.doc
-
- cp install: all
- -mkdir $(ROOT)/usr/games/X/doc
- cp sunclock $(ROOT)/usr/games/X/sunclock
- cp sunclock.doc $(ROOT)/usr/games/X/doc/sunclock
- -chmod 644 $(ROOT)/usr/games/X/doc/sunclock
-
- clean:
- rm -f *.o
-
- clobber: clean
- rm -f sunclock
-
- sunclock: $(OFILES)
- cc $(CFLAGS) $(OFILES) -o $@ -lX11 -lm -lsocket -lnsl_s
-
-